home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 September
/
CHIP NET Rehberi Eylül 1998.iso
/
ftp
/
iftp21
/
EXAMPLES.ZIP
/
EXAM17.FTP
< prev
next >
Wrap
Text File
|
1998-06-26
|
586b
|
26 lines
// Requires: version 2.1d
//
// Script example to illustrate new script commands in
// version 2.1d.
//
// new: day, date, time environment strings are now
// automatically available
//
// new: IF TIMERANGE starttime stoptime .......
//
// This if condition allows for a time check
// between a start and stop time. All times are
// in hh:mm:ss format.
//
log date: %date% Time: %time% Day: %day%
label again
if timerange 18:29:00 18:30:30 then begin
Log waiting.... %time%
goto again
endif
Log Done!